home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / szlibx.h < prev    next >
C/C++ Source or Header  |  1995-11-21  |  2KB  |  43 lines

  1. /* Copyright (C) 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* szlibx.h */
  20. /* Definitions for zlib filters */
  21. /* Requires strimpl.h */
  22. /* Must be compiled with -I$(ZSRCDIR) */
  23. #include "zlib.h"
  24.  
  25. /* Provide zlib-compatible allocation and freeing functions. */
  26. void *s_zlib_alloc(P3(void *mem, uint items, uint size));
  27. void s_zlib_free(P2(void *mem, void *address));
  28.  
  29. typedef struct stream_zlib_state_s {
  30.     stream_state_common;
  31.     z_stream zstate;
  32. } stream_zlib_state;
  33. /* The state descriptor is public only to allow us to split up */
  34. /* the encoding and decoding filters. */
  35. /* Note that we allocate all of zlib's private data directly from */
  36. /* the C heap, to avoid garbage collection issues. */
  37. extern_st(st_zlib_state);
  38. #define public_st_zlib_state()    /* in szlibc.c */\
  39.   gs_public_st_simple(st_zlib_state, stream_zlib_state,\
  40.     "zlibEncode/Decode state")
  41. extern const stream_template s_zlibD_template;
  42. extern const stream_template s_zlibE_template;
  43.